home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE06 / TIPTRIX / LISTING2.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-01-13  |  144 b   |  8 lines

  1. type
  2.   TStringBin=class(TComponent)
  3.   private
  4.     fString: String;
  5.   published
  6.     aString: String read fString write fString;
  7.     end;
  8.